home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
aakint14.arc
/
INITCOMM.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-08-24
|
926b
|
35 lines
PROCEDURE Init_Comm ;
VAR
Index : INTEGER ;
BEGIN
A_Second := 1000 ;
Term_Stat_Line := 26 ;
Com_Disp := 33 ;
Glb_Capture_Flg := FALSE ;
Glb_Capture_ESC := FALSE ;
Glb_Capture_Recv := TRUE ;
Glb_Capture_Xmit := FALSE ;
Glb_Ser_Chan := 0 ;
Default_Com := 0 ;
Wait_Increment := 300 ;
FOR Index := 0 TO Glb_Max_Comms DO
BEGIN
Full_Duplex [ Index ] := TRUE ;
Ascii_Mode [ Index ] := TRUE ;
Continue_Transfer [ Index ] := TRUE ;
CS [ Index ] := TRUE ;
CSF [ Index ] := 0 ;
WITH Comm_Counters [ INDEX ] DO
BEGIN
Framming_Errors := 0.0;
Parity_Errors := 0.0;
Chip_Over_Runs := 0.0;
Buffer_Over_Runs := 0.0;
Chars_Transmited := 0.0;
Chars_Recieved := 0.0;
END;
END ;
END ;